1. Euler Mathematics — The Language of Phase
Leonhard Euler gave physics its phase rotor. Every oscillation, every quantum amplitude, every string vibration is a complex exponential.
Core formulas
In QM and strings, time evolution is rotation by Euler: \(U(t)=e^{-iHt/\hbar}\). In path integrals, each history carries phase \(e^{iS/\hbar}\). Stationary phase picks the classical path — exactly Fermat's principle.
Interactive: Unit Circle
drag the gold dot2. Hilbert Spaces — The Stage
Quantum states live in a complete inner-product space \(\mathcal{H}\). Observables are operators; evolution is unitary.
Definition
Inner product \(\langle \psi|\phi\rangle\in\mathbb{C}\) with \(\langle\psi|\psi\rangle\ge 0\). Norm \(\|\psi\|=\sqrt{\langle\psi|\psi\rangle}\). Complete = limits stay inside.
For black holes, Hawking's puzzle lives in \(\mathcal{H}_{\text{total}} = \mathcal{H}_{\text{in}} \otimes \mathcal{H}_{\text{out}}\). Information loss = apparent non-unitarity on \(\mathcal{H}_{\text{out}}\) alone.
Interactive: Qubit on Bloch Sphere
3. Fermat's Principle — Light Finds the Fastest Path
1662: light extremizes travel time \(\delta\int_A^B n\,ds=0\). From wave optics, constructive interference occurs where phase \(e^{ik\int n ds}\) is stationary.
Snell's law from Fermat
For two media: minimize \(T = \frac{n_1}{c}\sqrt{(x-x_A)^2+y_A^2} + \frac{n_2}{c}\sqrt{(x_B-x)^2+y_B^2}\). Setting \(dT/dx=0\) gives \(n_1\sin\theta_1 = n_2\sin\theta_2\).
Gravitational lensing bend angle (weak field): \(\displaystyle \alpha = \frac{4GM}{c^2 b}\) — Einstein 1915, confirmed 1919.
Interactive: Refraction
Drag endpoints (white) and the interface point (cyan). Gold = Fermat optimal.
4. Einstein's Light vs Newton
Special Relativity
\(c\) is invariant. Lightlike interval: \(ds^2 = -c^2dt^2 + dx^2+dy^2+dz^2 = 0\).
General Relativity
Light follows null geodesics: \(g_{\mu\nu}k^\mu k^\nu=0,\; \nabla_k k=0\). Spacetime curvature replaces force.
Shapiro delay: extra coordinate time near mass because \(g_{00}\) slows clocks.
Interactive: Light Bending Around Sun
5. Quantum Path Integral — Feynman
Each path contributes Euler phase \(e^{iS/\hbar}\). Writing \(K=\langle x_f|e^{-iH\Delta t/\hbar}|x_i\rangle\) reveals the Hilbert operator.
Classical limit \(\hbar\to0\): stationary phase → \(\delta S=0\) → Euler–Lagrange → for light, Fermat. Quantum = sum; classical = extremum.
Interactive: Sum Over Histories
As ħ→0, paths cluster on the classical (gold) straight line — stationary phase.
6. String Theory & M-Theory
Mode expansion uses Euler: \(X^\mu = x_0^\mu + p^\mu\tau + i\sqrt{\frac{\alpha'}{2}}\sum_{n\neq0}\frac{1}{n}\big(\alpha_n^\mu e^{-in(\tau-\sigma)}+\tilde\alpha_n^\mu e^{-in(\tau+\sigma)}\big)\).
Hilbert space is a Fock space built by oscillators: \(|0\rangle, \alpha_{-n}|0\rangle\). Left/right movers give \(\mathcal{H}_{\text{string}}=\mathcal{H}_L\otimes\mathcal{H}_R\) — exactly the tensor structure Hawking discussed for in/out.
M-theory (11D): \(R_{11}=g_s\ell_s\). BFSS matrix model: Hilbert space of \(N\times N\) matrices, Hamiltonian \(H\sim\mathrm{Tr}(P^2-[X^i,X^j]^2)\).
Interactive: String Mode Builder
7. Tying to Hawking and Our Previous Conversations
Hawking temperature from Euler periodicity
Euclidean black hole requires \(\phi(\tau+\beta)=\phi(\tau)\). Modes \(e^{i\omega\tau}\) give \(e^{i\omega\beta}=1\Rightarrow \omega\beta=2\pi n\). For Schwarzschild, \(\beta=8\pi GM/\hbar c^3\).
Entropy = log dim Hilbert
Strominger–Vafa (1996): string microstates count gives \(S_{BH}= \log \dim \mathcal{H}_{BH}=2\pi\sqrt{c\,n_L/6}+L\leftrightarrow R\). Same left-right tensor product as strings.
Information paradox
Unitary \(S\)-matrix acts on \(\mathcal{H}_{rad}\otimes\mathcal{H}_{BH}\). Measurement and Zeno effect are projections \(P|\psi\rangle\) in Hilbert space — no cloning, only entanglement transfer.
Concept Map
Fermat extremum → Euler phase → path integral stationary phase → string worldsheets → Hawking periodicity. Hilbert space carries the unitary evolution throughout.
8. GNU Octave Laboratory
Copy-paste these five self-contained scripts to explore the mathematics directly.
% a) Euler and Fermat refraction (Snell's law)
n1 = 1.0; n2 = 1.5;
theta1 = pi/6; % 30 degrees
theta2 = asin(n1/n2 * sin(theta1));
fprintf('Snell: n1 sinθ1 = %.4f, n2 sinθ2 = %.4f\n', n1*sin(theta1), n2*sin(theta2));
% Euler phase
theta = linspace(0,2*pi,400);
z = exp(1i*theta);
plot(real(z), imag(z)); axis equal; title('Euler e^{iθ}');
% b) Hilbert inner product for qubit
psi = [1; 1i]/sqrt(2); % |+i>
phi = [1; 0]; % |0>
ip = phi' * psi; %
prob = abs(ip)^2;
fprintf('|<0|psi>|^2 = %.3f\n', prob);
% Unitary evolution
H = [0 1; 1 0]; % sigma_x
U = expm(-1i*H*0.5);
psi_t = U*psi;
% c) GR light deflection
G = 6.67430e-11; M = 1.9885e30; c = 299792458; b = 6.9634e8;
alpha_rad = 4*G*M/(c^2*b);
alpha_arcsec = alpha_rad * 180/pi * 3600;
fprintf('Einstein deflection at solar limb: %.3f arcsec\n', alpha_arcsec);
% ~1.75"
% d) Path integral Monte Carlo (free particle)
Npaths = 2000; Nt = 80;
paths = cumsum(randn(Npaths,Nt),2); % Wiener
S = sum(paths.^2,2); % toy action ~∫ v^2
hbar = 0.2;
K = mean(exp(1i*S/hbar));
fprintf('|K| = %.3f, arg(K)=%.3f\n', abs(K), angle(K));
% e) String partition (Dedekind eta, bosonic 24 transverse)
tau = 0.5 + 0.8i;
q = exp(2*pi*1i*tau);
eta = q^(1/24) * prod(1 - q.^(1:200));
Z = abs(eta)^(-48); % |η|^{-2(d-2)} with d=26
fprintf('Bosonic partition |η(τ)|^{-48} = %.3e\n', Z);
% Euler form q appears via e^{2π i τ}
Conclusion — The Rosetta Stone
| Pillar | Math Form | QM | GR | Strings | Hawking BH |
|---|---|---|---|---|---|
| Euler | $e^{i\theta}$, $e^{iS/\hbar}$ | Phase rotation $U=e^{-iHt/\hbar}$ | Null phase $e^{ikx}$ | Modes $e^{-in\sigma}$, $q=e^{2\pi i\tau}$ | Euclidean $e^{i\omega\beta}=1$ |
| Hilbert | $\langle\psi|\phi\rangle$, $\|\psi\|=1$ | State space $\mathcal{H}$ | QFT on curved space | Fock $\mathcal{H}_L\otimes\mathcal{H}_R$ | $\mathcal{H}_{in}\otimes\mathcal{H}_{out}$ |
| Fermat | $\delta\int nds=0$ | Stationary phase | Null geodesics | Worldsheet extremum | Extremal surface RT |
The same three ideas carry you from a lifeguard minimizing time to a photon bending around the Sun, to a quantum amplitude, to a vibrating string, to Hawking radiation. Euler provides the phase, Hilbert provides the home, Fermat provides the classical path that emerges when many phases interfere constructively.
From Fermat to Hilbert to Strings
Euler, Light, and Quantum Paths
How the 17th-century principle of least time, 18th-century phase mathematics, and 20th-century Hilbert spaces unite in General Relativity, Quantum Mechanics, and String Theory — and why this is the language Stephen Hawking used to describe black holes.
1. Euler Mathematics — The Language of Phase
Leonhard Euler gave physics its phase rotor. Every oscillation, every quantum amplitude, every string vibration is a complex exponential.
Core formulas
In QM and strings, time evolution is rotation by Euler: \(U(t)=e^{-iHt/\hbar}\). In path integrals, each history carries phase \(e^{iS/\hbar}\). Stationary phase picks the classical path — exactly Fermat's principle.
Interactive: Unit Circle
drag the gold dot2. Hilbert Spaces — The Stage
Quantum states live in a complete inner-product space \(\mathcal{H}\). Observables are operators; evolution is unitary.
Definition
Inner product \(\langle \psi|\phi\rangle\in\mathbb{C}\) with \(\langle\psi|\psi\rangle\ge 0\). Norm \(\|\psi\|=\sqrt{\langle\psi|\psi\rangle}\). Complete = limits stay inside.
For black holes, Hawking's puzzle lives in \(\mathcal{H}_{\text{total}} = \mathcal{H}_{\text{in}} \otimes \mathcal{H}_{\text{out}}\). Information loss = apparent non-unitarity on \(\mathcal{H}_{\text{out}}\) alone.
Interactive: Qubit on Bloch Sphere
3. Fermat's Principle — Light Finds the Fastest Path
1662: light extremizes travel time \(\delta\int_A^B n\,ds=0\). From wave optics, constructive interference occurs where phase \(e^{ik\int n ds}\) is stationary.
Snell's law from Fermat
For two media: minimize \(T = \frac{n_1}{c}\sqrt{(x-x_A)^2+y_A^2} + \frac{n_2}{c}\sqrt{(x_B-x)^2+y_B^2}\). Setting \(dT/dx=0\) gives \(n_1\sin\theta_1 = n_2\sin\theta_2\).
Gravitational lensing bend angle (weak field): \(\displaystyle \alpha = \frac{4GM}{c^2 b}\) — Einstein 1915, confirmed 1919.
Interactive: Refraction
Drag endpoints (white) and the interface point (cyan). Gold = Fermat optimal.
4. Einstein's Light vs Newton
Special Relativity
\(c\) is invariant. Lightlike interval: \(ds^2 = -c^2dt^2 + dx^2+dy^2+dz^2 = 0\).
General Relativity
Light follows null geodesics: \(g_{\mu\nu}k^\mu k^\nu=0,\; \nabla_k k=0\). Spacetime curvature replaces force.
Shapiro delay: extra coordinate time near mass because \(g_{00}\) slows clocks.
Interactive: Light Bending Around Sun
5. Quantum Path Integral — Feynman
Each path contributes Euler phase \(e^{iS/\hbar}\). Writing \(K=\langle x_f|e^{-iH\Delta t/\hbar}|x_i\rangle\) reveals the Hilbert operator.
Classical limit \(\hbar\to0\): stationary phase → \(\delta S=0\) → Euler–Lagrange → for light, Fermat. Quantum = sum; classical = extremum.
Interactive: Sum Over Histories
As ħ→0, paths cluster on the classical (gold) straight line — stationary phase.
6. String Theory & M-Theory
Mode expansion uses Euler: \(X^\mu = x_0^\mu + p^\mu\tau + i\sqrt{\frac{\alpha'}{2}}\sum_{n\neq0}\frac{1}{n}\big(\alpha_n^\mu e^{-in(\tau-\sigma)}+\tilde\alpha_n^\mu e^{-in(\tau+\sigma)}\big)\).
Hilbert space is a Fock space built by oscillators: \(|0\rangle, \alpha_{-n}|0\rangle\). Left/right movers give \(\mathcal{H}_{\text{string}}=\mathcal{H}_L\otimes\mathcal{H}_R\) — exactly the tensor structure Hawking discussed for in/out.
M-theory (11D): \(R_{11}=g_s\ell_s\). BFSS matrix model: Hilbert space of \(N\times N\) matrices, Hamiltonian \(H\sim\mathrm{Tr}(P^2-[X^i,X^j]^2)\).
Interactive: String Mode Builder
7. Tying to Hawking and Our Previous Conversations
Hawking temperature from Euler periodicity
Euclidean black hole requires \(\phi(\tau+\beta)=\phi(\tau)\). Modes \(e^{i\omega\tau}\) give \(e^{i\omega\beta}=1\Rightarrow \omega\beta=2\pi n\). For Schwarzschild, \(\beta=8\pi GM/\hbar c^3\).
Entropy = log dim Hilbert
Strominger–Vafa (1996): string microstates count gives \(S_{BH}= \log \dim \mathcal{H}_{BH}=2\pi\sqrt{c\,n_L/6}+L\leftrightarrow R\). Same left-right tensor product as strings.
Information paradox
Unitary \(S\)-matrix acts on \(\mathcal{H}_{rad}\otimes\mathcal{H}_{BH}\). Measurement and Zeno effect are projections \(P|\psi\rangle\) in Hilbert space — no cloning, only entanglement transfer.
Concept Map
Fermat extremum → Euler phase → path integral stationary phase → string worldsheets → Hawking periodicity. Hilbert space carries the unitary evolution throughout.
8. GNU Octave Laboratory
Copy-paste these five self-contained scripts to explore the mathematics directly.
% a) Euler and Fermat refraction
n1=1; n2=1.5; theta1=pi/6; theta2=asin(n1/n2*sin(theta1));
% b) Hilbert inner product
psi=[1;1i]/sqrt(2); phi=[1;0]; ip=phi'*psi;
% c) GR light deflection
G=6.67e-11; M=2e30; c=3e8; b=7e8; alpha=4*G*M/(c^2*b)*206265; % arcsec
% d) Path integral Monte Carlo free particle
N=1000; paths=randn(N,100); S=sum(paths.^2,2); K=mean(exp(1i*S));
% e) String partition
tau=0.5+0.8i; q=exp(2*pi*1i*tau); eta=q^(1/24)*prod(1-q.^(1:50)); Z=abs(eta)^(-48);
Conclusion — The Rosetta Stone
| Pillar | Math Form | QM | GR | Strings | Hawking BH |
|---|---|---|---|---|---|
| Euler | $e^{i\theta}$, $e^{iS/\hbar}$ | Phase rotation $U=e^{-iHt/\hbar}$ | Null phase $e^{ikx}$ | Modes $e^{-in\sigma}$, $q=e^{2\pi i\tau}$ | Euclidean $e^{i\omega\beta}=1$ |
| Hilbert | $\langle\psi|\phi\rangle$, $\|\psi\|=1$ | State space $\mathcal{H}$ | QFT on curved space | Fock $\mathcal{H}_L\otimes\mathcal{H}_R$ | $\mathcal{H}_{in}\otimes\mathcal{H}_{out}$ |
| Fermat | $\delta\int nds=0$ | Stationary phase | Null geodesics | Worldsheet extremum | Extremal surface RT |
The same three ideas carry you from a lifeguard minimizing time to a photon bending around the Sun, to a quantum amplitude, to a vibrating string, to Hawking radiation. Euler provides the phase, Hilbert provides the home, Fermat provides the classical path that emerges when many phases interfere constructively.